home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library / Microsoft Programmer's Library (CD-ROM Database)(125-099-008)(Version 1.1a)(CDRM 162100)(1989).iso / SAMPCODE / OS2SDK11 / TK4 / OPENDLG / DATA.C next >
C/C++ Source or Header  |  1989-02-20  |  758b  |  21 lines

  1. /***************************************************************************\
  2. * DATA.C -- This file contains per process global variables
  3. * Created by Microsoft Corporation, 1989
  4. \***************************************************************************/
  5.  
  6. #define NO_DOS
  7. #define NO_GPI
  8. #include "tool.h"
  9.  
  10. /*
  11.    This library uses a NON SHARED DATA selector.  This means each
  12.    process using the library gets its own selector, and also that
  13.    values cannot be shared and must be recreated for each process.
  14. */
  15.  
  16. HMODULE vhModule;            /* Library module handle */
  17. HHEAP  vhheap;               /* Library heap */
  18.  
  19. PSTR   vrgsz[CSTRINGS];      /* Array of pointer to our strings (indexed
  20.                                 by IDS_... */
  21.